home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 193 / MF_UK_193_1.iso / pc / Files / Scenes / toolkit.dir / Internal_62_installer button behaviour (dynamic).ls < prev    next >
Encoding:
Text File  |  2006-08-17  |  243 b   |  11 lines

  1. property myPath
  2. global gRootPath
  3.  
  4. on getPropertyDescriptionList me
  5.   return [#myPath: [#comment: "Path from root of CD to open", #format: #string, #default: "nowhere"]]
  6. end
  7.  
  8. on mouseUp me
  9.   OK = baOpenFile(gRootPath & myPath, "maximised")
  10. end
  11.